home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / coffee.scm < prev    next >
Text File  |  2009-12-15  |  3KB  |  93 lines

  1. ; Chris Gutteridge (cjg@ecs.soton.ac.uk)
  2. ; At ECS Dept, University of Southampton, England.
  3.  
  4. ; This program is free software; you can redistribute it and/or modify
  5. ; it under the terms of the GNU General Public License as published by
  6. ; the Free Software Foundation; either version 2 of the License, or
  7. ; (at your option) any later version.
  8. ;
  9. ; This program is distributed in the hope that it will be useful,
  10. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. ; GNU General Public License for more details.
  13. ;
  14. ; You should have received a copy of the GNU General Public License
  15. ; along with this program; if not, write to the Free Software
  16. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18.  
  19. (define (script-fu-coffee-stain inImage inLayer inNumber inDark)
  20.   (let* (
  21.         (theImage inImage)
  22.         (theHeight (car (gimp-image-height theImage)))
  23.         (theWidth (car (gimp-image-width theImage)))
  24.         (theNumber inNumber)
  25.         (theSize (min theWidth theHeight))
  26.         (theStain 0)
  27.         )
  28.  
  29.     (gimp-context-push)
  30.  
  31.     (gimp-image-undo-group-start theImage)
  32.  
  33.     (while (> theNumber 0)
  34.       (set! theNumber (- theNumber 1))
  35.       (set! theStain (car (gimp-layer-new theImage theSize theSize
  36.                                           RGBA-IMAGE "Stain" 100
  37.                                           (if (= inDark TRUE)
  38.                                               DARKEN-ONLY-MODE NORMAL-MODE))))
  39.  
  40.       (gimp-image-add-layer theImage theStain 0)
  41.       (gimp-selection-all theImage)
  42.       (gimp-edit-clear theStain)
  43.  
  44.       (let ((blobSize (/ (rand (- theSize 40)) (+ (rand 3) 1))))
  45.         (gimp-ellipse-select theImage
  46.                              (/ (- theSize blobSize) 2)
  47.                              (/ (- theSize blobSize) 2)
  48.                              blobSize blobSize CHANNEL-OP-REPLACE TRUE 0 FALSE)
  49.       )
  50.  
  51.       (script-fu-distress-selection theImage theStain
  52.                                     (* (+ (rand 15) 1) (+ (rand 15) 1))
  53.                                     (/ theSize 25) 4 2 TRUE TRUE)
  54.  
  55.       (gimp-context-set-gradient "Coffee")
  56.  
  57.       (gimp-edit-blend theStain CUSTOM-MODE NORMAL-MODE
  58.                        GRADIENT-SHAPEBURST-DIMPLED 100 0 REPEAT-NONE FALSE
  59.                        FALSE 0 0 TRUE
  60.                        0 0 0 0)
  61.  
  62.       (gimp-layer-set-offsets theStain
  63.                               (- (rand theWidth) (/ theSize 2))
  64.                               (- (rand theHeight) (/ theSize 2)))
  65.     )
  66.  
  67.     (gimp-selection-none theImage)
  68.  
  69.     (gimp-image-undo-group-end theImage)
  70.  
  71.     (gimp-displays-flush)
  72.  
  73.     (gimp-context-pop)
  74.   )
  75. )
  76.  
  77. ; Register the function with GIMP:
  78.  
  79. (script-fu-register "script-fu-coffee-stain"
  80.   _"_Coffee Stain..."
  81.   _"Add realistic looking coffee stains to the image"
  82.   "Chris Gutteridge"
  83.   "1998, Chris Gutteridge / ECS dept, University of Southampton, England."
  84.   "25th April 1998"
  85.   "RGB*"
  86.   SF-IMAGE       "The image"   0
  87.   SF-DRAWABLE    "The layer"   0
  88.   SF-ADJUSTMENT _"Stains"      '(3 1 10 1 1 0 0)
  89.   SF-TOGGLE     _"Darken only" TRUE
  90. )
  91.  
  92. (script-fu-menu-register "script-fu-coffee-stain" "<Image>/Filters/Decor")
  93.